projects
/
project
/
bcm63xx
/
atf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
358ed93
)
plat: rcar: Add E3 1GBx4 debug print
author
Marek Vasut
<
[email protected]
>
Tue, 2 Oct 2018 11:51:19 +0000
(13:51 +0200)
committer
Marek Vasut
<
[email protected]
>
Thu, 6 Dec 2018 00:59:10 +0000
(
01:59
+0100)
RCAR_DRAM_DDR3L_MEMCONF = 2 means E3 with 1GBx4 memory configuration.
Add debug print for this configuration for completeness sake.
Signed-off-by: Marek Vasut <
[email protected]
>
plat/renesas/rcar/bl2_plat_setup.c
patch
|
blob
|
history
diff --git
a/plat/renesas/rcar/bl2_plat_setup.c
b/plat/renesas/rcar/bl2_plat_setup.c
index 0e4be292ec5899dffd09b7775c5ec51f7df6ca8c..25ffd3b5e94f8abd2903737a9e9123b171a53de0 100644
(file)
--- a/
plat/renesas/rcar/bl2_plat_setup.c
+++ b/
plat/renesas/rcar/bl2_plat_setup.c
@@
-332,6
+332,9
@@
static void bl2_advertise_dram_size(uint32_t product, uint32_t cut)
#elif (RCAR_DRAM_DDR3L_MEMCONF == 1)
/* 2GB(512MBx4) */
NOTICE("BL2: 0x400000000 - 0x47fffffff, 2 GiB\n");
+#elif (RCAR_DRAM_DDR3L_MEMCONF == 2)
+ /* 4GB(1GBx4) */
+ NOTICE("BL2: 0x400000000 - 0x4ffffffff, 4 GiB\n");
#endif /* RCAR_DRAM_DDR3L_MEMCONF == 0 */
}
}